home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_database.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  76 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10214);
  10.  script_version ("$Revision: 1.9 $");
  11.  name["english"] = "database service";
  12.  name["francais"] = "Service database";
  13.  script_name(english:name["english"], francais:name["francais"]);
  14.  
  15.  desc["english"] = "
  16. The database RPC service is running. 
  17. If you do not use this service, then
  18. disable it as it may become a security
  19. threat in the future, if a vulnerability
  20. is discovered.
  21.  
  22. Risk factor : Low";
  23.  
  24.  
  25.  desc["francais"] = "
  26. Le service RPC database tourne.
  27. Si vous ne l'utilisez pas, alors
  28. dΘsactivez-le puisqu'il risque de
  29. devenir un jour une faille de 
  30. sΘcuritΘ si une vulnerabilitΘ 
  31. est trouvΘe.
  32.  
  33. Facteur de risque : Faible";
  34.  
  35.  
  36.  script_description(english:desc["english"], francais:desc["francais"]);
  37.  
  38.  summary["english"] = "checks the presence of a RPC service";
  39.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  47.  family["english"] = "RPC"; 
  48.  family["francais"] = "RPC";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("rpc_portmap.nasl");
  51.  script_require_keys("rpc/portmap");
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59.  
  60. include("misc_func.inc");
  61.  
  62.  
  63. RPC_PROG = 100016;
  64. tcp = 0;
  65. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  66. if(!port){
  67.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  68.     tcp = 1;
  69.     }
  70.  
  71. if(port)
  72. {
  73.  if(tcp)security_warning(port);
  74.  else security_warning(port, protocol:"udp");
  75. }
  76.